home *** CD-ROM | disk | FTP | other *** search
/ Visual Cafe 3 / Visual Cafe 3.ISO / Vcafe / Main.bin / LocaleElements_de_LU.java < prev    next >
Text File  |  1998-09-22  |  979b  |  36 lines

  1. /*
  2.  * @(#)LocaleElements_de_LU.java    1.1 98/07/07
  3.  *
  4.  * (C) Copyright IBM Corp. 1998 - All Rights Reserved
  5.  */
  6.  
  7. /**
  8.  * Table of Java supplied standard locale elements
  9.  * Created 19 May 1998
  10.  */
  11.  
  12. // WARNING : the format of this file will change in the future!
  13.  
  14. package java.text.resources;
  15.  
  16. import java.util.ListResourceBundle;
  17.  
  18. public class LocaleElements_de_LU extends ListResourceBundle {
  19.     /**
  20.      * Overrides ListResourceBundle
  21.      */
  22.     public Object[][] getContents() {
  23.         return new Object[][] {
  24.             { "LocaleString", "de_LU" }, // locale id based on iso codes
  25.             { "ShortCountry", "LUX" }, // iso-3 abbrev country name
  26.             { "NumberPatterns",
  27.                 new String[] {
  28.                     "#,##0.###;-#,##0.###", // decimal pattern
  29.                     "#,##0.00 F;-#,##0.00 F", // currency pattern
  30.                     "#,##0%" // percent pattern
  31.                 }
  32.             }
  33.         };
  34.     }
  35. }
  36.